-
Notifications
You must be signed in to change notification settings - Fork 14k
Implement &pin patterns and ref pin binding modes
#148397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This comment has been minimized.
This comment has been minimized.
2df8a82 to
47329dc
Compare
&pin patterns and ref pin binding modes
This comment has been minimized.
This comment has been minimized.
47329dc to
039929c
Compare
This comment has been minimized.
This comment has been minimized.
2512da9 to
d001988
Compare
This comment has been minimized.
This comment has been minimized.
d001988 to
cd14a39
Compare
|
|
|
Some changes occurred in src/tools/clippy cc @rust-lang/clippy Some changes occurred in src/tools/rustfmt cc @rust-lang/rustfmt Some changes occurred in match lowering cc @Nadrieril Some changes occurred in match checking cc @Nadrieril Some changes occurred in exhaustiveness checking cc @Nadrieril |
|
|
|
Looks very good! The policy about rustfmt is that we don't change formatting on our side when we add new syntax but I would feel silly asking you to revert your change; I'm leaving it in. @bors r+ rollup=iffy |
Implement `&pin` patterns and `ref pin` binding modes Implement `&pin` patterns and `ref pin` binding modes, part of [pin ergonomics](#130494). r? `@Nadrieril` cc `@traviscross` `@eholk`
|
💔 Test failed - checks-actions |
This comment has been minimized.
This comment has been minimized.
cd14a39 to
5ef48ed
Compare
|
This PR was rebased onto a different master commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
Wouldn't that break the fmt check of tidy test in our UI tests? (unless with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me also. Thanks @frank-king.
|
@bors r=Nadrieril,traviscross rollup=iffy |
|
🌲 The tree is currently closed for pull requests below priority 100. This pull request will be tested once the tree is reopened. |
The idea is not that rustfmt would error, it's that it would leave the code unformatted, exactly as if |
|
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing 055d0d6 (parent) -> 29a6971 (this PR) Test differencesShow 74 test diffsStage 1
Stage 2
Additionally, 72 doctest diffs were found. These are ignored, as they are noisy. Job group index
Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard 29a69716f2c0f19b5f9163bb4d8c50fb818cf326 --output-dir test-dashboardAnd then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
|
Finished benchmarking commit (29a6971): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results (secondary 1.1%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (primary -5.3%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 476.7s -> 477.532s (0.17%) |
…drieril,traviscross Implement `&pin` patterns and `ref pin` binding modes Implement `&pin` patterns and `ref pin` binding modes, part of [pin ergonomics](rust-lang#130494). r? `@Nadrieril` cc `@traviscross` `@eholk` Signed-off-by: Voxell Paladynee <paladyneshadow@gmail.com>
Implement
&pinpatterns andref pinbinding modes, part of pin ergonomics.r? @Nadrieril
cc @traviscross @eholk